-
Notifications
You must be signed in to change notification settings - Fork 7.6k
HTTPClient Port #347
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTTPClient Port #347
Conversation
Remove workaround of sockets always return -76 (because it's fixed on IDF now) Remove delay during handshake (improving stability)
Changed SHA1 fingerprint by Root CA verification Changed log system
bool begin(String host, uint16_t port, String uri = "/"); | ||
bool begin(String host, uint16_t port, String uri, const char* CAcert); | ||
// deprecated, use the overload above instead | ||
bool begin(String host, uint16_t port, String uri, bool https, const char* CAcert) __attribute__ ((deprecated)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the logic for adding a deprecated function, when adding a library for the first time?
I tried to keep it as closer possible to ESP8266 library, it stays so close that even the deprecated functions remain deprecated =P |
when is tihs going to be available in the master branch? |
@me-no-dev @igrr did you move away from https://github.com/arduino-libraries/ArduinoHttpClient ? |
Changed SHA1 fingerprint by Root CA verification
Changed log system
Some WiFIClientSecure fixes